home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Transcript 1.0b1 / Hello World ƒ / HelloWorld.r < prev   
Text File  |  1996-06-15  |  1KB  |  37 lines

  1. /***
  2.   *
  3.   *    HelloWorld.r - Demonstrate the Transcript application.
  4.   *
  5.   *    Copyright © 1996 Christopher E. Hyde.  All rights reserved.
  6.   *
  7.   ***/
  8.  
  9. #define SystemSevenOrLater    1
  10. //#include "SysTypes.r"
  11. #include "Types.r"
  12.  
  13.  
  14.  
  15. // Here is the quintessential MultiFinder friendliness device, the SIZE resource
  16. resource 'SIZE' (-1) {
  17.     dontSaveScreen,
  18.     acceptSuspendResumeEvents,
  19.     enableOptionSwitch,
  20.     canBackground,                // We can background; we don't currently, but our sleep value
  21.                                 // guarantees we don't hog the Mac while we are in the background
  22.     doesActivateOnFGSwitch,        // We do our own activate/deactivate; don't fake us out
  23.     backgroundAndForeground,    // This is definitely not a background-only application!
  24.     dontGetFrontClicks,            // Don’t "do first click" behavior like the Finder
  25.     ignoreAppDiedEvents,        // Essentially, I'm not a debugger (sub-launching)
  26.     is32BitCompatible,            // This app may be run in 32-bit address space
  27.     isHighLevelEventAware,        // Does Post/AcceptHighLevelEvent
  28.     localAndRemoteHLEvents,        // Allow network events
  29.     notStationeryAware,            // Doesn’t check stationery bit when opening documents
  30.     dontUseTextEditServices,    // Can’t use text services through TextEdit
  31.     reserved,
  32.     reserved,
  33.     reserved,
  34.     50 * 1024,
  35.     50  * 1024
  36. };
  37.